home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1997 August / Walnut Creek CDROM.7z / ZIPPED / VOL_100 / 176_01.ZIP / FACT.LSP < prev    next >
Encoding:
Text File  |  1986-01-06  |  81 b   |  6 lines

  1. (defun fact (n)
  2.        (if (< n 2)
  3.            1
  4.        (* n (fact (1- n)))))
  5.  
  6.